home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
enigma
/
earcd
/
comm
/
comm2
/
ctsrc701.lha
/
affsys.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-12-01
|
575b
|
34 lines
/*
* Affsys.C
*
* Automatic File Forwarding system dependent code.
*/
/*
* History
*
* 90May15 HAW Created.
*/
/*
* Contents
*
* SetBuffer() Figures out buffer contents
* MSDOSparse() Parses a filename for drive and path
*/
#include "ctdl.h"
void MSDOSparse(char *theDir, char *drive);
/*
* SetBuffer()
*
* This function figures out where to find files to send to another system
* and sets up internal buffer of fl_send appropriately.
*/
void SetBuffer(char *name, struct fl_send *sendWhat)
{
strCpy(sendWhat->snArea.naDirname, name);
}